github.com/valyala/fastjson.Value.t (field)

38 uses

	github.com/valyala/fastjson (current package)
		arena.go#L38: 	v.t = TypeObject
		arena.go#L50: 	v.t = TypeArray
		arena.go#L60: 	v.t = typeRawString
		arena.go#L72: 	v.t = typeRawString
		arena.go#L84: 	v.t = TypeNumber
		arena.go#L96: 	v.t = TypeNumber
		arena.go#L108: 	v.t = TypeNumber
		parser.go#L133: 		v.t = typeRawString
		parser.go#L154: 				v.t = TypeNumber
		parser.go#L168: 	v.t = TypeNumber
		parser.go#L181: 		v.t = TypeArray
		parser.go#L187: 	a.t = TypeArray
		parser.go#L224: 		v.t = TypeObject
		parser.go#L230: 	o.t = TypeObject
		parser.go#L586: 	t Type
		parser.go#L596: 	v.t = 0
		parser.go#L601: 	switch v.t {
		parser.go#L630: 		panic(fmt.Errorf("BUG: unexpected Value type: %d", v.t))
		parser.go#L703: 	if v.t == typeRawString {
		parser.go#L705: 		v.t = TypeString
		parser.go#L707: 	return v.t
		parser.go#L730: 		if v.t == TypeObject {
		parser.go#L735: 		} else if v.t == TypeArray {
		parser.go#L757: 	if v == nil || v.t != TypeObject {
		parser.go#L772: 	if v == nil || v.t != TypeArray {
		parser.go#L875: 	if v != nil && v.t == TypeTrue {
		parser.go#L887: 	if v.t != TypeObject {
		parser.go#L899: 	if v.t != TypeArray {
		parser.go#L987: 	if v.t == TypeTrue {
		parser.go#L990: 	if v.t == TypeFalse {
		parser.go#L997: 	valueTrue  = &Value{t: TypeTrue}
		parser.go#L998: 	valueFalse = &Value{t: TypeFalse}
		parser.go#L999: 	valueNull  = &Value{t: TypeNull}
		update.go#L43: 	if v.t == TypeObject {
		update.go#L47: 	if v.t == TypeArray {
		update.go#L91: 	if v.t == TypeObject {
		update.go#L95: 	if v.t == TypeArray {
		update.go#L108: 	if v == nil || v.t != TypeArray {